(since noone objected on gtk-devel)
authorÉRDI Gergo <cactus@src.gnome.org>
Mon, 11 Oct 1999 20:13:49 +0000 (20:13 +0000)
committerÉRDI Gergo <cactus@src.gnome.org>
Mon, 11 Oct 1999 20:13:49 +0000 (20:13 +0000)
Passing 0 to XBell allows GDK to use the default X values which can be
set by the user via the xset command (e.g. to turn it off, or to
modify pitch/length/volume, etc)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/gdk.c
gdk/x11/gdkmain-x11.c

index cc825bab28301df9c8bda2903e2948c4966d0743..66459eec63c9e5b6a3fc99652efe7d03b44f5b0b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
+
+       * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
+       X values
+
 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
 
        * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
index cc825bab28301df9c8bda2903e2948c4966d0743..66459eec63c9e5b6a3fc99652efe7d03b44f5b0b 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
+
+       * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
+       X values
+
 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
 
        * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
index cc825bab28301df9c8bda2903e2948c4966d0743..66459eec63c9e5b6a3fc99652efe7d03b44f5b0b 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
+
+       * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
+       X values
+
 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
 
        * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
index cc825bab28301df9c8bda2903e2948c4966d0743..66459eec63c9e5b6a3fc99652efe7d03b44f5b0b 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
+
+       * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
+       X values
+
 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
 
        * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
index cc825bab28301df9c8bda2903e2948c4966d0743..66459eec63c9e5b6a3fc99652efe7d03b44f5b0b 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
+
+       * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
+       X values
+
 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
 
        * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
index cc825bab28301df9c8bda2903e2948c4966d0743..66459eec63c9e5b6a3fc99652efe7d03b44f5b0b 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
+
+       * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
+       X values
+
 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
 
        * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
index cc825bab28301df9c8bda2903e2948c4966d0743..66459eec63c9e5b6a3fc99652efe7d03b44f5b0b 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-11  ERDI Gergo  <cactus@cactus.rulez.org>
+
+       * gdk/gdk.c (gdk_beep): Modified the XBell call to use the default
+       X values
+
 1999-10-09  ERDI Gergo  <cactus@cactus.rulez.org>
 
        * gtk/gtktoolbar.h, gtk/gtktoolbar.c: Added horizontal icon/text
index 87b15b6a91c2c5b2081f169134f7f9999458cf43..4e8b83f803cd5073a86d68a0b0465aad2ab31bab 100644 (file)
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -819,7 +819,7 @@ gdk_key_repeat_restore (void)
 void
 gdk_beep (void)
 {
-  XBell(gdk_display, 100);
+  XBell(gdk_display, 0);
 }
 
 /*
index 87b15b6a91c2c5b2081f169134f7f9999458cf43..4e8b83f803cd5073a86d68a0b0465aad2ab31bab 100644 (file)
@@ -819,7 +819,7 @@ gdk_key_repeat_restore (void)
 void
 gdk_beep (void)
 {
-  XBell(gdk_display, 100);
+  XBell(gdk_display, 0);
 }
 
 /*